home *** CD-ROM | disk | FTP | other *** search
/ Windows News 2005 November / WNnov2005.iso / Windows / Equipement / hMailServer / hMailServer-4.1-Build-136.exe / {app} / PHPWebAdmin / theme / default / accounts_edit.tpl < prev    next >
Text File  |  2005-07-17  |  2KB  |  59 lines

  1. <br/>
  2. <h1>{$account->Address}</h1>
  3.  
  4. <form action="index.php" method="post" onSubmit="return formCheck(this);">
  5.     <input type="hidden" name="page" value="accounts_edit">
  6.     <input type="hidden" name="function" value="doedit">
  7.     <input type="hidden" name="DomainID" value="{$domain->ID}">
  8.     <input type="hidden" name="AccountID" value="{$account->ID}">
  9.     
  10.     <table border="0" id="settingstable" width="100%">
  11.         <tr>
  12.             <td width="25%">{translate}address{/translate}</td>
  13.             <td width="75%">
  14.             {if $admin_rights}
  15.                 <input type="text" name="Address" value="{$address}" checkallownull="false" checktype="text"> @{$domain->Name}</td>
  16.             {else}
  17.             
  18.                 {$account->Address}
  19.             {/if}
  20.             
  21.         </tr>
  22.         <tr>
  23.             <td>{translate}password{/translate}</td>
  24.             <td><input type="text" name="Password" value=""></td>
  25.         </tr>
  26.         <tr>
  27.             <td>{translate}mailboxsize{/translate}</td>
  28.             <td>
  29.             {if $admin_rights}
  30.                 <input type="text" name="MaxSize" value="{$account->MaxSize}" checkallownull="false" checktype="number">
  31.             {else}
  32.                 {$account->MaxSize}
  33.             {/if}
  34.         </tr>
  35.         <tr>
  36.             <td>{translate}current_mailboxsize{/translate}</td>
  37.             <td>{$accountsize}</td>
  38.         </tr>        
  39.         <tr>
  40.             <td>{translate}active{/translate}</td>
  41.             <td>
  42.             {if $admin_rights}
  43.                 <input type="checkbox" style="border: 0px;" name="Active" value="1" {if $account->Active}checked{/if}>
  44.             {else}
  45.                 {if $account->Active}{translate}yes{/translate}{else}No{/if}
  46.             {/if}
  47.             
  48.             
  49.             </td>
  50.         </tr>
  51.     <tr>
  52.         <td colspan="2" class="footerline"> </td>
  53.     </tr>
  54.         <tr>
  55.             <td colspan="2" align="right"><input type="submit" value="{translate}save{/translate}"></td>
  56.         </tr>
  57.     </table>
  58. </form>
  59.